Download OpenAPI specification:Download
Public data interface for accessing Lobbywatch data.
The project Lobbywatch.ch maintains a database (DB) of Swiss parliamentarian and their relations to lobby organizations.
This document describes the Lobbywatch.ch data interface (dataIF). This data interface can be used for visualizations, e.g d3.
The data interface is close to the DB model. The data interface is based on the views. The data model is available as 1 page or on 4 pages. Additionally, there is a simplified data model. Usage of this data interface requires knowledge of the DB data model.
Data are delivered in JSON.
The data interface is written in a generic way from the data model.
All names and keys are always in minor case. Words are separated by _.
There is another interface to the Lobbywatch data. Some data are provided as GraphQL. The data of the Lobbywatch GraphQL interace are based on this data interface (dataIF).
Call:
https://cms.lobbywatch.ch/de/data/interface/v1/json/table/branche/flat/id/1
JSON Response:
{
"success" : true,
"count" : 1,
"message" : "1 record(s) found",
"sql" : "\n SELECT branche.*\n FROM v_branche branche\n WHERE branche.id=:id",
"source": "branche",
"build secs": 0.15,
"data" : {
"anzeige_name" : "Gesundheit",
"id" : "1",
"name" : "Gesundheit",
"kommission_id" : "1",
"beschreibung" : "Akteure im Gesundheitswesen",
"angaben" : "Wie werden die ca. 60 Milliarden jährlich aufgeteilt",
"farbcode" : "blue",
"symbol_rel" : null,
"symbol_klein_rel" : "branche_symbole\/default_branche.png",
"symbol_dateiname_wo_ext" : null,
"symbol_dateierweiterung" : null,
"symbol_dateiname" : null,
"symbol_mime_type" : null,
"kommission" : "Kommissionen für soziale Sicherheit und Gesundheit (SGK)",
"symbol_path" : "\/test\/files\/branche_symbole\/default_branche.png",
"symbol_url" : "http:\/\/lobbywatch.ch\/\/test\/files\/branche_symbole\/default_branche.png"
}
}
JSON Response:
{
"success" : true,
"count" : 13,
"message" : "13 record(s) found",
"sql" : "\n SELECT interessengruppe.*\n FROM v_interessengruppe interessengruppe\n WHERE 1 AND interessengruppe.branche_id = 1",
"source": "interessengruppe",
"build secs": 0.18,
"data" : [
{
"anzeige_name" : "Pharma",
"id" : "1",
"name" : "Pharma",
"branche_id" : "1",
"beschreibung" : "Medikamentenforschung, Medikamentenvertrieb, Pharmafirmen, Apotheken",
"branche" : "Gesundheit",
"kommission_id" : "1",
"kommission" : "Kommissionen für soziale Sicherheit und Gesundheit (SGK)"
},
{
"anzeige_name" : "Krankenkassen",
"id" : "2",
"name" : "Krankenkassen",
"branche_id" : "1",
"beschreibung" : "Krankenkassen, Dachorganisationen KK, Unterorganisationen KK",
"branche" : "Gesundheit",
"kommission_id" : "1",
"kommission" : "Kommissionen für soziale Sicherheit und Gesundheit (SGK)"
},
{"__comment" : "…"},
{
"anzeige_name" : "Dienstleistungen",
"id" : "88",
"name" : "Dienstleistungen",
"branche_id" : "1",
"beschreibung" : "Firmen mit Dienstleistungen explizit für das Gesundheitswesen, z.B. IT-Lösungen.",
"branche" : "Gesundheit",
"kommission_id" : "1",
"kommission" : "Kommissionen für soziale Sicherheit und Gesundheit (SGK)"
} ]
}
Browsers apply by default the same-origin policy for AJAX calls (XMLHttpRequest). Thus, it is by default not possible to use cross-domain webservices in Javascript.
Cross-origin resource sharing (CORS) is a mechanism that allows restricted resources on a web page to be requested from another domain outside the domain from which the resource originated.
If you want to access the Lobbywatch data interface by AJAX/XHR calls, you need to add a CORS header.
The HTTP response header to set for dataIF JSON webservice calls:
Access-Control-Allow-Origin: https://cms.lobbywatch.chPlease do not abuse the Lobbywatch Data Interface.
Information about fields
The freigabe_datum meta field gives the state of the record.
null: not yet public, only listed for completnessnow: is public after freigabe_datum
The anzeige_name is a formatted name of the record. This name is localized depending on the languge, see in chapter language.
The fields ending with *_unix contain the date in the UNIX date format, seconds since 01.01.1970.
If erfasst is false means the Parlamentarier, is not entered. This field is set to false, if it is known, that the Parlamentarier will not be available anymore for the parliament in the next election. The value erfasst is only fully reliable if the freigabe_datum is set.
Special queries (see filtering below):
Parteien mit den Parlamentarieren und deren Anzahl Verbindungen.
https://cms.lobbywatch.ch/de/data/interface/v1/json/query/parlament-partei/aggregated/list
Example Name:
Example number of interessenbindungen of parlamentarier (language dependent):
Records of query calls can be filtered by one or several fields by appending URL parameters.
Filters work for all available fields in the base query view.
Format of filters:
filter_{FIELD}=valuewhere filter_ is the prefix, {FIELD} is the name of the field and
Example:
filter_branche_id=1filter_{FIELD}_list=valuewhere filter_ is the prefix, _list ist the suffix, {FIELD} is the
name of the field and value is a comma separated list of values.
Example:
filter_branche_id_list=1,2,3Filters work for all available fields in the base query view.
filter_{FIELD}_like=valuewhere filter_ is the prefix, _like ist the suffix, {FIELD} is the
name of the field and value is filter value which can contain %
(matches any number of characters, even zero characters) or _
(matches exactly one character).
Example:
filter_kommissionen=%SGK%Filters work for all available fields in the base query view.
The number of results can be limited. The default is 10.
limit=25Call:
https://cms.lobbywatch.ch/de/data/interface/v1/json/table/parlamentarier/flat/list?limit=25
The parameter limitlimits the number of results to the number.
limit=nonelimit=none excludes the LIMIT SQL statement.
The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.
select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*
Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name.
Data are only returned for one language.
If the language parameter lang is not set, German is the default.
Example:
lang=fr
lang=deQueries can be modified by several options. Some options are only available if permission is granted.
includeUnpublished=1 (default): Show unpublished data? (Requires advanced permission)includeInactive=0 (default): Show historised data, e.g. retired parlamentarians? (Requires advanced permission)includeConfidentialData=0 (default): Show confidential data? (Requires advanced permission)includeMetaData=0 (default): Show meta data, e.g. from the workflowReturn a list of Branche
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Interessenbindung
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Interessenbindungsvergütung
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Lobbygruppe (Interessengruppe)
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of In Kommission
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Kommission
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Mandat
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Mandatsvergütung
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Organisation
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Organisation Beziehung
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Organisationsjahr
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Parlamentarier
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Parlamentariertransparenz
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Partei
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Fraktion
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Rat
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Kanton
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Kantonjahr
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Zutrittsberechtigter
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Person
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Lobbypediaverknüpfung
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Parlamenterier einer Kommission
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Kommissionen für Parlamenterier
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Interessenbindung eines Parlamenteriers
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Indirekte Interessenbindungen eines Parlamenteriers
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Mandate einer Zutrittsberechtigung (INNER JOIN)
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Mandate einer Zutrittsberechtigung (LFET JOIN)
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Indirekte Mandate einer Zutrittsberechtigung (INNER JOIN)
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Parlamenterier, die eine Interessenbindung zu dieser Organisation haben
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Parlamenterier, die eine indirekte Interessenbindung zu dieser Organisation haben
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Parlamenterier, die eine Zutrittsberechtiung mit Mandant oder Interessenbindung zu dieser Organisation haben
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Parlamenterier, die eine indirekte Interessenbindung oder indirekte Zutrittsberechtiung mit Mandat zu dieser Organisation haben
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Organisationen für welche eine PR-Agentur arbeitet.
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Organisationen, in welcher eine Organisation Mitglied ist
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Muttergesellschaften
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Organisationen, die eine PR-Firma beauftragt haben
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Mitgliedsorganisationen
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Tochtergesellschaften
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of aggregierte Parlament-Partei
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a single Branche
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Interessenbindung
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Interessenbindungsvergütung
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Lobbygruppe (Interessengruppe)
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single In Kommission
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Kommission
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Mandat
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Mandatsvergütung
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Organisation
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Organisation Beziehung
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Organisationsjahr
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Parlamentarier
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Parlamentariertransparenz
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Partei
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Fraktion
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Rat
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Kanton
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Kantonjahr
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Zutrittsberechtigter
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Person
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Lobbypediaverknüpfung
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single aggregierter Parlamentarier
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single aggregierter Gast
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single aggregierte Organisation
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single aggregierte Lobbygruppe (Interessengruppe)
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single aggregierte Branche
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single aggregierter Parlamentarier
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single aggregierter Gast
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single aggregierte Organisation
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single aggregierte Lobbygruppe (Interessengruppe)
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single aggregierte Branche
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of aggregierte Parlament-Partei
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a single Branche
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Branche
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Branche
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Interessenbindung
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Interessenbindung
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Interessenbindung
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Interessenbindungsvergütung
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Interessenbindungsvergütung
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Interessenbindungsvergütung
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Lobbygruppe (Interessengruppe)
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Lobbygruppe (Interessengruppe)
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Lobbygruppe (Interessengruppe)
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single In Kommission
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of In Kommission
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of In Kommission
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Kommission
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Kommission
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Kommission
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Mandat
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Mandat
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Mandat
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Mandatsvergütung
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Mandatsvergütung
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Mandatsvergütung
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Organisation
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Organisation
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Organisation
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Organisation Beziehung
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Organisation Beziehung
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Organisation Beziehung
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Organisationsjahr
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Organisationsjahr
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Organisationsjahr
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Parlamentarier
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Parlamentarier
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Parlamentarier
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Parlamentariertransparenz
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Parlamentariertransparenz
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Parlamentariertransparenz
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Partei
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Partei
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Partei
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Fraktion
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Fraktion
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Fraktion
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Rat
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Rat
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Rat
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Kanton
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Kanton
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Kanton
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Kantonjahr
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Kantonjahr
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Kantonjahr
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Zutrittsberechtigter
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Zutrittsberechtigter
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Zutrittsberechtigter
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Person
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Person
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Person
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Lobbypediaverknüpfung
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Lobbypediaverknüpfung
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Lobbypediaverknüpfung
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Parlamenterier einer Kommission
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Kommissionen für Parlamenterier
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Interessenbindung eines Parlamenteriers
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Indirekte Interessenbindungen eines Parlamenteriers
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Mandate einer Zutrittsberechtigung (INNER JOIN)
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Mandate einer Zutrittsberechtigung (LFET JOIN)
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Indirekte Mandate einer Zutrittsberechtigung (INNER JOIN)
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Parlamenterier, die eine Interessenbindung zu dieser Organisation haben
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Parlamenterier, die eine indirekte Interessenbindung zu dieser Organisation haben
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Parlamenterier, die eine Zutrittsberechtiung mit Mandant oder Interessenbindung zu dieser Organisation haben
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Parlamenterier, die eine indirekte Interessenbindung oder indirekte Zutrittsberechtiung mit Mandat zu dieser Organisation haben
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Organisationen für welche eine PR-Agentur arbeitet.
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Organisationen, in welcher eine Organisation Mitglied ist
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Muttergesellschaften
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Organisationen, die eine PR-Firma beauftragt haben
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Mitgliedsorganisationen
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Tochtergesellschaften
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Parlamenterier einer Kommission
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Kommissionen für Parlamenterier
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Interessenbindung eines Parlamenteriers
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Indirekte Interessenbindungen eines Parlamenteriers
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Mandate einer Zutrittsberechtigung (INNER JOIN)
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Mandate einer Zutrittsberechtigung (LFET JOIN)
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Indirekte Mandate einer Zutrittsberechtigung (INNER JOIN)
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Parlamenterier, die eine Interessenbindung zu dieser Organisation haben
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Parlamenterier, die eine indirekte Interessenbindung zu dieser Organisation haben
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Parlamenterier, die eine Zutrittsberechtiung mit Mandant oder Interessenbindung zu dieser Organisation haben
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Parlamenterier, die eine indirekte Interessenbindung oder indirekte Zutrittsberechtiung mit Mandat zu dieser Organisation haben
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Organisationen für welche eine PR-Agentur arbeitet.
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Organisationen, in welcher eine Organisation Mitglied ist
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Muttergesellschaften
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Organisationen, die eine PR-Firma beauftragt haben
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Mitgliedsorganisationen
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Tochtergesellschaften
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Lobbywatch.ch tables can be queried in several ways. The interfaces access the corresponding views of the tables. The views enrich the tables and make their usage more convenient.
Search for entities having a certain string
| str required | string Search string |
| tables | string Default: "parlamentarier,zutrittsberechtigung,branche,interessengruppe,kommission,organisation,partei" Example: tables=parlamentarier,zutrittsberechtigung Comma separated list of |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 2,
- "message": "2 record(s) found ",
- "sql": "SELECT id, page, table_name, name_de, name_fr, table_weight, weight\n-- , freigabe_datum, bis\nFROM v_search_table\nWHERE search_keywords_de LIKE :str AND (table_name='parlamentarier' OR table_name='zutrittsberechtigung' OR freigabe_datum <= NOW())ORDER BY table_weight, weight LIMIT 10 ;\n",
- "source": "search_table",
- "build secs": "0.06",
- "data": [
- {
- "id": "285",
- "page": "organisation",
- "table_name": "organisation",
- "table_weight": "15",
- "weight": "\\\"-1\\\"",
- "name": "Novartis International AG"
}, - {
- "id": "4649",
- "page": "organisation",
- "table_name": "organisation",
- "table_weight": "15",
- "weight": "\\\"-1\\\"",
- "name": "Novartis Pharma AG"
}
]
}Return a list of Branche
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Interessenbindung
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Interessenbindungsvergütung
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Lobbygruppe (Interessengruppe)
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of In Kommission
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Kommission
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Mandat
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Mandatsvergütung
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Organisation
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Organisation Beziehung
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Organisationsjahr
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Parlamentarier
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Parlamentariertransparenz
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Partei
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Fraktion
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Rat
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Kanton
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Kantonjahr
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Zutrittsberechtigter
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Person
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Lobbypediaverknüpfung
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Branche
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Branche
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Branche
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Branche
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Branche
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Branche
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Interessenbindung
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Interessenbindung
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Interessenbindung
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Interessenbindungsvergütung
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Interessenbindungsvergütung
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Interessenbindungsvergütung
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Lobbygruppe (Interessengruppe)
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Lobbygruppe (Interessengruppe)
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Lobbygruppe (Interessengruppe)
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single In Kommission
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of In Kommission
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of In Kommission
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Kommission
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Kommission
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Kommission
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Mandat
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Mandat
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Mandat
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Mandatsvergütung
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Mandatsvergütung
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Mandatsvergütung
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Organisation
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Organisation
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Organisation
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Organisation Beziehung
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Organisation Beziehung
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Organisation Beziehung
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Organisationsjahr
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Organisationsjahr
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Organisationsjahr
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Parlamentarier
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Parlamentarier
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Parlamentarier
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Parlamentariertransparenz
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Parlamentariertransparenz
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Parlamentariertransparenz
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Partei
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Partei
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Partei
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Fraktion
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Fraktion
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Fraktion
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Rat
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Rat
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Rat
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Kanton
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Kanton
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Kanton
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Kantonjahr
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Kantonjahr
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Kantonjahr
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Zutrittsberechtigter
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Zutrittsberechtigter
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Zutrittsberechtigter
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Person
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Person
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Person
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Lobbypediaverknüpfung
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Lobbypediaverknüpfung
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Lobbypediaverknüpfung
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single aggregierter Parlamentarier
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single aggregierter Gast
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single aggregierte Organisation
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single aggregierte Lobbygruppe (Interessengruppe)
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single aggregierte Branche
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Interessenbindung
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Interessenbindung
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Interessenbindung
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Interessenbindungsvergütung
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Interessenbindungsvergütung
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Interessenbindungsvergütung
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Lobbygruppe (Interessengruppe)
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Lobbygruppe (Interessengruppe)
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Lobbygruppe (Interessengruppe)
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single In Kommission
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of In Kommission
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of In Kommission
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Kommission
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Kommission
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Kommission
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Mandat
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Mandat
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Mandat
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Mandatsvergütung
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Mandatsvergütung
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Mandatsvergütung
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Organisation
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Organisation
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Organisation
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Organisation Beziehung
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Organisation Beziehung
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Organisation Beziehung
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Organisationsjahr
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Organisationsjahr
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Organisationsjahr
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Parlamentarier
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Parlamentarier
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Parlamentarier
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Parlamentariertransparenz
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Parlamentariertransparenz
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Parlamentariertransparenz
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Partei
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Partei
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Partei
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Fraktion
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Fraktion
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Fraktion
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Rat
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Rat
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Rat
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Kanton
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Kanton
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Kanton
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Kantonjahr
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Kantonjahr
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Kantonjahr
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Zutrittsberechtigter
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Zutrittsberechtigter
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Zutrittsberechtigter
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Person
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Person
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Person
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single Lobbypediaverknüpfung
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Lobbypediaverknüpfung
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Lobbypediaverknüpfung
| str required | string Example: gesundheit Search string for name |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of Parlamenterier einer Kommission
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Kommissionen für Parlamenterier
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Interessenbindung eines Parlamenteriers
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Indirekte Interessenbindungen eines Parlamenteriers
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Mandate einer Zutrittsberechtigung (INNER JOIN)
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Mandate einer Zutrittsberechtigung (LFET JOIN)
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Indirekte Mandate einer Zutrittsberechtigung (INNER JOIN)
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Parlamenterier, die eine Interessenbindung zu dieser Organisation haben
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Parlamenterier, die eine indirekte Interessenbindung zu dieser Organisation haben
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Parlamenterier, die eine Zutrittsberechtiung mit Mandant oder Interessenbindung zu dieser Organisation haben
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Parlamenterier, die eine indirekte Interessenbindung oder indirekte Zutrittsberechtiung mit Mandat zu dieser Organisation haben
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Organisationen für welche eine PR-Agentur arbeitet.
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Organisationen, in welcher eine Organisation Mitglied ist
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Muttergesellschaften
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Organisationen, die eine PR-Firma beauftragt haben
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Mitgliedsorganisationen
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of Tochtergesellschaften
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a single aggregierter Parlamentarier
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single aggregierter Gast
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single aggregierte Organisation
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single aggregierte Lobbygruppe (Interessengruppe)
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a single aggregierte Branche
| id required | integer ID |
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
{- "success": true,
- "count": 1,
- "message": "1 record(s) found",
- "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
- "source": "table",
- "build secs": "0.15"
}Return a list of aggregierte Parlament-Partei
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |
Return a list of aggregierte Parlament-Partei
| limit | string Default: 10 Max records to return (integer or 'none'). |
| filter_{FIELD} | string Example: filter_{FIELD}=1 Simple field filter where Example: |
| filter_{FIELD}_list | string Example: filter_{FIELD}_list=1,2,3 List field filter where Example: |
| filter_{FIELD}_like | string Example: filter_{FIELD}_like=%SGK% 'Like' field filter where Example: |
| select_fields | string Example: select_fields=parlamentarier.nachname,vorname The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included. Note: For a correct working, always the fields of all languages must be selected, e.g |
| lang | string Default: "de" Enum: "de" "fr" Example: lang=fr Data are only returned for one language. If the language parameter |
| includeUnpublished | integer Default: 1 Enum: 0 1 Example: includeUnpublished=0 Show unpublished data? (Requires advanced permission) |
| includeInactive | integer Default: 0 Enum: 0 1 Example: includeInactive=1 Show historised data, e.g. retired parlamentarians? (Requires advanced permission) |
| includeConfidentialData | integer Default: 0 Enum: 0 1 Example: includeConfidentialData=1 Show confidential data? (Requires advanced permission) |
| includeMetaData | integer Default: 0 Enum: 0 1 Example: includeMetaData=1 Show meta data, e.g. from the workflow |